@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Imperial+Script&family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sirivennela&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Charm:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amita:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Pinstripe:ital@0;1&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --main-color:#ebbc46;
    --btn-color: #ebb009;
    --btn-hover-color: #ffcd59;
    --red: #856100;
    --black: #000;
    --glow: #ebbc46;
    --grey: #5e5e5e;
}

body{
font-family: 'Poppins' ,sans-serif;
font-style: italic;
background: radial-gradient(#f1f1f1, #f1f1f1);
}

.banner{
background: radial-gradient(#292929, #000000);
border-bottom: 0.1rem solid var(--glow);
}



.banner .row{
    margin-top: 40px;
    margin-bottom: 70px;
}

.container{
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

.navbar{
    display: flex;
    align-items: center;
    padding: 20px;
}


nav{
    flex: 1;
    text-align: right;
}


nav ul{
    display: inline-block;
    list-style-type: none;
}


nav ul li{
    display: inline-block;
    margin-right: 20px;
}

nav ul li a{
    text-decoration: none;
    color: #fff;
}

nav ul li a:hover{
    text-decoration: none;
    color: #ebbc46;
}

.navbar .cart :hover{
    background-color: #ebbc47;
    border: 5px solid #ebbc47;
    border-radius: 5px;
    transition: 0.3s;
}


.banner p{
    color: rgb(241, 241, 241);
    font-family: "Charm", cursive;
    font-weight: 400;
    font-size: 22px;
}

p{
    color: rgb(0, 255, 42);
}

.row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}

h1{
font-family: "Imperial Script", cursive;
font-size: 90px;
font-weight: 400;
}

.row p{
color: #ffffff;
padding-left: 30px;
}


.col-2{
    flex-basis:50%;
    min-width: 300px;
    color: var(--main-color);
}

.col-2 img{
    max-width: 100%;
    padding: 50px 0;
}

.col-2 h1{
    font-size: 90px;
    line-height: 60px;
    margin: 25px 0;

}

.col-2 p{
    font-weight: 500;
    color: #ffffff;
}

.btn{
    text-decoration: none;
    color: #000;
    background: #c2955c;
    padding: 8px 30px;
    margin: 30 0;
    border-radius: 30px;
    transition: background 0.5s;
}

.btn:hover{
    background: var(--btn-hover-color);
    color: #fff;
}

.categorias{
    margin: 70px 0;
}

.corpo-categorias{
    max-width: 1080;
    margin-left: 50px;
    margin-right: 50px;
}

.corpo-categorias .row2{
    text-align: center;
    margin-left: 150px;
    margin-right: 150px;
}

.col-3{
    flex-basis: 30%;
    max-width: 400px;
    margin-bottom: 30px;
}

.col-3 img{
    width: 100%;
    object-fit: cover;
    object-position: center ;
}

.col-4{
    flex-basis: 25%;
    max-width: 350px;
    padding: 10px;
    margin-bottom: 50px;
    transition: transform 0.7s;
}

.col-4 h4{
  font-family: "Alumni Sans Pinstripe", sans-serif;
  font-weight: 700;
  font-style: bold;
  font-size: 20px;
    color:  #331d00;
    text-align: left;
    
}

.col-4:hover{
    transform: scale(1.1);
}

.col-4 img{
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.titulo{
    position: relative;
    line-height: 60px;
    margin: 0 auto 80px;
    text-align: center;
    color: #494949;
    font-family: "Sirivennela", sans-serif;
    font-size: 60px;
    font-weight: 600;
    padding-top: 70px;
}

.titulo::after{
    content: '';
    background-color: #dfdfdf;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}


h4{
    color: rgb(179, 179, 179);
    font-weight: normal;
}

.col-4 p{
    font-size: 14px;
    color: #036400;
    font-weight: 400;
    text-align: left;
    padding-top: 10px;
    
}
.row .col-4 ul p{
    text-decoration: line-through;
    font-size: 14px;
    color: #b40000;
    font-weight: 400;
}

.classificacao ion-icon{
    color: #ffcd45;
}

.row3{
    padding-top: 100px;
}

/*--------------------- DEPOIMENTOS ---------------------*/

.depoimentos{
 padding-top: 100px;
 border-top: 0.1rem solid var(--glow);
}

.depoimentos .col-3{
 text-align: center;
 padding: 40px 20px;
 box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.418);
 cursor: pointer;
 transition: transform 0.5s;
}

.depoimentos .col-3:hover{
    transform: scale(1.1);
}

.depoimentos .col-3 img{
    width: 50px;
    border-radius: 50%;
    margin-top: 20px;
    border: 2px solid #292929;
}

.depoimento-icone{
    font-size: 34px;
    color: var(--main-color);
}

.col-3 p{
font-size: 13px;
color:#6d6d6d;
margin: 12px 0;
}

.depoimentos .col-3 h3{
    font-size: 16px;
    font-weight: 600px;
    color: #494949;
}

/*--------------------- CHECKOUT ---------------------*/



/*--------------------- CELULAR ---------------------*/
@media only screen and (max-width:600px){

    .row{
        text-align: center;
    }

    .col-2, .col-3, .col-4{
     flex-basis: 100%;
    }


.col-2 h1{
    font-size: 50px;
}

.rodape-col-3, .rodape-col-4{
    text-align: center;
}

.col-4 p{
    font-size: 17px;
    text-align: center;
    padding-right: 45px;
}

.titulo{
    font-size: 50px;
}

.col-4 h4{
    text-align: center;
    font-size: 25px;
}

.col-4 ul p{
    text-align: center;
    padding-right: 45px;
}

}

/*--------------------- RODAPE ---------------------*/

.rodape{
    background: var(--black);
    padding: 1px 0 20px;
    font-size: 14px;
    border-top: 0.1rem solid var(--grey);
}

.rodape p{
    color: #cfcfcf;
}

.rodape h3{
    color: var(--btn-color);
    margin-bottom: 20px;
    font-size: 17px;
}

.rodape ul ion-icon{
color: #ffffff;
font-size: 30px;
padding-left: 38px;
}

.rodape-col-2{
    width: 250px;
    margin-bottom: 20px;
    padding-left: 100px;
}


.rodape-col-1{
    flex: 1;
    text-align: center;
}

.rodape-col-1 img{
    width: 07%;
    margin-bottom: 20;
}

ul{
    list-style-type: none;
}


.rodape hr{
    border: none;
    height: 1px;
    background: var(--main-color);
    margin: 20px 0;
}

.direitos{
    text-align: center;
}



/*--------------------- PRODUTOS ---------------------*/


.novomenu{
background: radial-gradient(#292929, #000000);
box-shadow: 0 2px 0 0 var(--main-color);
}



.row2{
    margin: 100px auto 50px;
    justify-content: space-between;
}

.row2 select{
    padding: 5px;
    border: 1px solid var(--main-color);
}

.row2 select:focus{
    outline: none;
}

/*--------------------- PAGINAÇÃO ---------------------*/